home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / PPCSmallEiffel / bin_c / smake_clean < prev    next >
Encoding:
Text File  |  1998-02-27  |  364 b   |  14 lines

  1. #SAS/C smakefile for powerUP (TM) PPC Amiga systems
  2. #(for 68k Amigas, it should suffice to change "CC" and "STARTUP" below)
  3. #written by Andreas R. Kleinert in 1998
  4.  
  5. CC      = SCPPC
  6. STARTUP = LIB:c_ppc.o
  7. PROG    = /bin/clean
  8. PROG2   = ../bin/clean
  9. OBJS    = clean.o
  10.  
  11. $(PROG): $(OBJS)
  12.  
  13.          ppc-amigaos-ld -r $(STARTUP) $(OBJS) LIB:scppc.a lib:end.o -o $(PROG2)
  14.